403ff02de28ce048045970fb961cfdd7d67c95bd,retz-client/src/main/java/io/github/retz/cli/CommandList.java,CommandList,handle,#ClientCLIConfig#boolean#,50

Before Change


                    "TaskId", "State", "AppName", "Command", "Result", "Duration",
                    "Scheduled", "Started", "Finished", "Tags");

            jobs.sort(Comparator.comparingInt(job -> job.id()));

            for (Job job : jobs) {
                String reason = "-";

After Change


                    "TaskId", "State", "AppName", "Command", "Result", "Duration",
                    "Scheduled", "Started", "Finished", "Tags");

            List<Job> jobs = jobMap.values().stream().sorted(Comparator.comparingInt(job -> job.id())).collect(Collectors.toList());

            for (Job job : jobs) {